home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 6 / QRZ Ham Radio Callsign Database - Volume 6.iso / pc / files / dsp / dspkgctr.z / dspkgctr / gcc / makegcc.pc < prev    next >
Encoding:
Text File  |  1992-06-08  |  501 b   |  27 lines

  1. # $Id: makegcc.pc,v 1.4 92/04/22 14:27:15 pete Exp $
  2.  
  3. CC    = tcc
  4. CFLAGS    = -I. -Iconfig -O -D_MSDOS
  5.  
  6.  
  7. # The order to search for rules and files is specified by .SUFFIXES
  8. .SUFFIXES : .o .obj .S .asm .i .c .cc .y .l
  9.  
  10. .c.obj:
  11.     $(CC) -c $(CFLAGS) $<
  12.  
  13. all: gccnew.exe 
  14.  
  15. GCC_OBJS = gcc.obj alloca.obj obstack.obj version.obj
  16.  
  17. gccnew.exe: $(GCC_OBJS)
  18.     # make sure lingering objs are dusted
  19.     $(CC) -egccnew.exe $(GCC_OBJS)
  20.     # dust just incase
  21.     del alloca.obj
  22.     del obstack.obj
  23.     del version.obj
  24.  
  25. clean:
  26.     del *.obj
  27.